/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 800px;
  padding: var(--space-4);
  z-index: 1;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button {
  font-size: var(--font-size-lg);
  padding: var(--space-3) var(--space-8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: 80vh;
    padding: var(--space-4);
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--space-3);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    height: 70vh;
    padding: var(--space-2);
  }
  
  .hero-content {
    padding: var(--space-2);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
  }
  
  .hero-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-5);
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 350px;
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-lg);
  }
  
  .hero-content p {
    font-size: var(--font-size-xs);
  }
}

/* Hero Section ends here */

/* 2nd section starts from here */

.dark-store-info {
    padding: 3rem 2rem;
    /* font-family: Arial, sans-serif; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content-box {
    max-width: 1200px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
  }

  .content-box h2 {
    margin: 0.3rem 0;
    font-size: 1.5rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    text-align: left; 

  }

  .content-box p {
    margin-top: 1rem;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    text-align: left;
  }
  
  /*  */
.dark-store-info1 {
    padding: 3rem 2rem;
    /* font-family: Arial, sans-serif; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -9rem;
  }

  .content-box1 {
    max-width: 1200px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
  }

  .content-box1 h2 {
    margin: 0.3rem 0;
    font-size: 1.5rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    text-align: left; 

  }

  .content-box1 p {
    margin-top: 1rem;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    text-align: left;
  }

  /* 2nd section starts from here */
  
    .card-row {
      display: flex;
      gap: 60px;
      flex-wrap: nowrap;
        overflow-x: auto;
        padding: 30px 100px;
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
        margin-top: -3rem;
    }
    
    .card-row::-webkit-scrollbar {
      display: none; /* For Chrome, Safari, and Opera */
    }

    .card {
      --card-color: #DE5B7B;
      --blub-color: #DE5B7B;
      position: relative;
      user-select: none;
      width: 180px;
      height: 250px;
    }

    @keyframes keyframes-rotate-blubs {
      0% {
        transform: translate(10px) rotate(360deg);
      }
      50% {
        transform: translate(-5px, 10px) rotate(180deg);
      }
      100% {
        transform: translate(10px) rotate(0deg);
      }
    }

    .card span {
      width: 100px;
      height: 100px;
      position: absolute;
      background: linear-gradient(0deg, transparent, var(--blub-color));
      border-radius: 100%;
      opacity: 0.5;
      animation: keyframes-rotate-blubs 4s infinite linear;
    }

    .card span:nth-child(1) {
      top: -5%;
      left: -5%;
      width: 60px;
      height: 60px;
      animation-delay: .1s;
      opacity: 0.3;
    }

    .card span:nth-child(2) {
      top: 60%;
      left: -20%;
      width: 80px;
      height: 80px;
      animation-delay: .2s;
      opacity: 0.3;
    }

    .card span:nth-child(3) {
      top: 10%;
      left: 60%;
      animation-delay: .3s;
      opacity: 0.6;
    }

    .card span:nth-child(4) {
      top: 70%;
      left: 50%;
      width: 90px;
      height: 90px;
      animation-delay: .4s;
      opacity: 0.4;
    }

    .card div {
      backdrop-filter: blur(15px);
      outline: 1px solid var(--card-color);
      color: var(--card-color);
      width: 100%;
      height: 100%;
      border-radius: 5%;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .card div .check {
      fill: var(--card-color);
      width: 25px;
      height: 25px;
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
    }

    .card div strong {
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .card div p {
      font-size: 0.8rem;
    }

    .card div hr {
      border: none;
      border-top: 1px solid var(--card-color);
      opacity: .5;
    }

    .card div button {
      background-color: transparent;
      color: var(--card-color);
      border: none;
      outline: 1px solid var(--card-color);
      border-radius: 1rem;
      padding: .5rem 1rem;
      font-size: 0.8rem;
      font-weight: 900;
      transition: .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      gap: .2em;
    }

    .card div button .arrow {
      width: 0px;
      height: 20px;
      fill: #E0F9B5;
      transform: scale(0);
      transition: .3s;
    }

    .card div button:hover .arrow {
      width: 20px;
      margin-left: 1em;
      transform: scale(1);
    }

    .card div button:hover {
      background-color: var(--card-color);
      color: #E0F9B5;
      cursor: pointer;
    }

/* 2nd section ends here */

/* 3rd section starts from here */

.our-stats-section {
            /* padding: 60px 20px; */
            text-align: center;
            margin-top: 3rem;

        }

        .stats-header {
            margin-bottom: 40px;
        }

        .stats-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
        }

        .stats-header p {
            font-size: 15px;
            color: #000000;
            margin: 0 auto;
        }

.stats-container {
            background-color: #E0F9B5;
            padding: 60px 40px;
           width: 100%;
            margin: 0 auto;
            
        }


        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            position: relative;
        }

        .stat-item {
            padding: 0 30px;
            position: relative;
            text-align: left;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #000000;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #DE5B7B;
            margin-bottom: 15px;
            line-height: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .stat-description {
            color: #000000;
            font-size: 1rem;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .stat-item.animate .stat-number,
        .stat-item.animate .stat-description {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-item.animate .stat-description {
            transition-delay: 0.2s;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-item::after {
                display: none;
            }

            .stat-item {
                padding: 0;
                text-align: center;
            }

            .stats-container {
                padding: 40px 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }

            .stat-item:nth-child(3n)::after {
                display: none;
            }
        }

/* 3rd section ends here */

/* 4th section starts from here */

.dark-store-info2 {
    padding: 3rem 2rem;
    /* font-family: Arial, sans-serif; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DE5B7B;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 90%, 60% 85%, 40% 95%, 20% 90%, 0 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  
  }

  .content-box2 {
    max-width: 1200px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
  }

  .content-box2 h2 {
    margin: 0.3rem 0;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-align: left; 

  }

  .content-box2 p {
    margin-top: 1rem;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 4rem;
  }

/* 4th section ends here */

/* 5th section starts from here */

.our-stats-section1 {
            /* padding: 60px 20px; */
            text-align: center;
            margin-top: 3rem;

        }

        .stats-header1 {
            margin-bottom: 40px;
        }

        .stats-header1 h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
        }

        .stats-header1 p {
            font-size: 15px;
            color: #000000;
            margin: 0 auto;
        }

.stats-container1 {
            background-color: #E0F9B5;
            padding: 60px 40px;
           width: 100%;
            margin: 0 auto;
            
        }


        .stats-grid1 {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            position: relative;
        }

        .stat-item1 {
            padding: 0 30px;
            position: relative;
            text-align: left;
        }

        .stat-item1:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #000000;
        }

        .stat-number1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #DE5B7B;
            margin-bottom: 15px;
            line-height: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .stat-description1 {
            color: #000000;
            font-size: 1rem;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .stat-item1.animate .stat-number1,
        .stat-item1.animate .stat-description1 {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-item1.animate1 .stat-description1 {
            transition-delay: 0.2s;
        }

        @media (max-width: 768px) {
            .stats-grid1 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-item1::after {
                display: none;
            }

            .stat-item1 {
                padding: 0;
                text-align: center;
            }

            .stats-container1 {
                padding: 40px 20px;
            }

            .stat-number1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .stats-grid1 {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }

            .stat-item1:nth-child(3n)::after {
                display: none;
            }
        }

/* 5th section ends here */

/* 3rd section starts from here */


    .Second-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      flex-direction: row; /* Image on left, content on right */
    }

    .image-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Ensure image is left */
    }

    .image-content2 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .text-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Ensure text is right */
    }

    .text-content2 h2 {
     font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content2 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    @media screen and (max-width: 768px) {
      .Second-section {
        flex-direction: column;
        text-align: center;
      }

      .image-content2,
      .text-content2 {
        order: unset; /* Stack normally on mobile */
      }
    }

    

/* 3rd section ends here */

/* 4th section starts from here */

.Third-section {
      display: flex;
      flex-direction: row; /* Ensures left-to-right layout */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .text-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Left side */
    }

    .text-content1 h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content1 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    .image-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Right side */
    }

    .image-content1 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .Third-section {
        flex-direction: column;
        text-align: center;
      }

      .text-content1, .image-content1 {
        order: unset; /* Reset order on small screens */
      }
    }

/* 4th section ends here */

/* FAQ starts from here */

.faq-section {
  background: linear-gradient(135deg, #DE5B7B, #E0F9B5);
  color: #ffffff;
  padding: 40px 20px;
  max-width: 950px;
  margin: 40px auto;
  border-radius: 25px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  padding: 18px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 18px 20px;
}

.icon {
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* FAQ ends here */



/* Solution and Bookings Section starts from here */

.grab-solutions-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
}

.solutions-card {
    background: linear-gradient(rgba(0, 0, 0, 0.109), rgba(0, 0, 0, 0.4)),
              url('../Images/Main\ Redirection1.jpg') center/cover no-repeat;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px; /* Expanded */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-grid, .bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title {
    font-size: 25px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-icon img {
    width: 24px;
    height: 24px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.solution-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 60px;
    height: 60px;
}

.solution-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .solutions-grid,
    .bookings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
    }

    .solution-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Solution and Bookings Section ends here */